go/types.graphNode.ndeps (field)

10 uses

	go/types (current package)
		initorder.go#L45: 			fmt.Printf("\t%s depends on %d nodes\n", n.obj.Name(), n.ndeps)
		initorder.go#L68: 				n.obj.Name(), n.obj.order(), n.ndeps)
		initorder.go#L72: 		if n.ndeps > 0 {
		initorder.go#L93: 			p.ndeps--
		initorder.go#L185: 	ndeps      int        // number of outstanding dependencies before this object can be initialized
		initorder.go#L279: 		n.ndeps = len(n.succ)
		initorder.go#L304: 	return x.ndeps < y.ndeps || x.ndeps == y.ndeps && x.obj.order() < y.obj.order()